home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / n_b_v203.zip / SCANR.DMO < prev    next >
Text File  |  1996-07-04  |  2KB  |  46 lines

  1. $if 0
  2.     ┌──────────────────────────╖                        PowerBASIC v3.20
  3.  ┌──┤          DASoft          ╟──────────────────────┬──────────────────╖
  4.  │  ├──────────────────────────╢    Copyright 1995    │ DATE: 1995-10-01 ╟─╖
  5.  │  │ FILE NAME   SCANR   .DMO ║          by          ╘════════════════─ ║ ║
  6.  │  │                          ║  Don Schullian, Jr.                     ║ ║
  7.  │  ╘══════════════════════════╝                                         ║ ║
  8.  │ A license is hereby granted to the holder to use this source code in  ║ ║
  9.  │ any program, commercial or otherwise,  without receiving the express  ║ ║
  10.  │ permission of the copyright holder and without paying any royalties,  ║ ║
  11.  │ as long as this code is not distributed in any compilable format.     ║ ║
  12.  │  IE: source code files, PowerBASIC Unit files, and printed listings   ║ ║
  13.  ╘═╤═════════════════════════════════════════════════════════════════════╝ ║
  14.    │                ....................................                   ║
  15.    ╘═══════════════════════════════════════════════════════════════════════╝
  16. $endif
  17.  
  18. '.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°.°
  19. ' ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° ° °
  20.  
  21. $INCLUDE "DAS-NB01.INC"
  22. COLOR 7, 0
  23. CLS
  24.  
  25. ? "┌────────────────────────────────────────────────────────────
  26. ? "│ fSCANr% ( Start%, ANY, Chars?? )
  27. ? "├────────────────────────────────────────────────────────────────
  28. ? "│ This function is just like fSCAN% but it searches from right to
  29. ? "│ left. Have a look at SCAN.DMO to get the general picture.
  30. ? "│ If Start% is 0 then the function will automatically start at the
  31. ? "│ end of the string so there is no need to do a LEN( V$ ),etc.
  32. ? "│ Have a look at SCANnot.DMO too.
  33. ? "└─────────────────────────────────────────────────────────────────────────
  34. ?
  35. V$ = "This is a test."
  36. PRINT V$
  37.  
  38. P1% = fSCANr%( 0, V$, &h0074 )   ' looking for the last "t"
  39.       LOCATE 12, P1% : PRINT CHR$(24)
  40.       LOCATE 13, P1% : PRINT "└────────────────────────── t"
  41.  
  42. P2% = fSCANr%( 0, V$, &h7320 )   ' looking for the last "s "
  43.       LOCATE 12, P2% : PRINT CHR$(24,24)
  44.       LOCATE 13, P2% : PRINT "││"
  45.       LOCATE 14, P2% : PRINT "└┴──────────────────────────────── s<space>
  46.